home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1998 May / Designer's Club 1998 May.iso / pc / IDEASRC / BEVEL.DIR / 00373.ls < prev    next >
Encoding:
Text File  |  1998-04-06  |  499 b   |  24 lines

  1. on exitFrame
  2.   if soundBusy(1) then
  3.     go(the frame)
  4.   end if
  5.   repeat with n = 32 to 35
  6.     if rollOver(n) then
  7.       set the visible of sprite n to 0
  8.     end if
  9.     if rollOver(n) then
  10.       set the visible of sprite (n + 5) to 1
  11.     end if
  12.     updateStage()
  13.   end repeat
  14.   repeat with n = 32 to 35
  15.     if not rollOver(n) then
  16.       set the visible of sprite n to 1
  17.     end if
  18.     if not rollOver(n) then
  19.       set the visible of sprite (n + 5) to 0
  20.     end if
  21.     updateStage()
  22.   end repeat
  23. end
  24.